home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue38 / Survive / Demo.dpr next >
Encoding:
Text File  |  1998-08-24  |  283 b   |  16 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Demo1 in 'Demo1.pas' {frmMain},
  6.   dmDemo in 'dmDemo.pas' {DemoDM: TDataModule};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TDemoDM, DemoDM);
  13.   Application.CreateForm(TfrmMain, frmMain);
  14.   Application.Run;
  15. end.
  16.